type compress/flate.byFreq

7 uses

	compress/flate (current package)
		huffman_code.go#L23: 	lfs       byFreq    // stored to avoid repeated allocation in generate
		huffman_code.go#L325: type byFreq []literalNode
		huffman_code.go#L327: func (s *byFreq) sort(a []literalNode) {
		huffman_code.go#L328: 	*s = byFreq(a)
		huffman_code.go#L332: func (s byFreq) Len() int { return len(s) }
		huffman_code.go#L334: func (s byFreq) Less(i, j int) bool {
		huffman_code.go#L341: func (s byFreq) Swap(i, j int) { s[i], s[j] = s[j], s[i] }